RenderQueueItem onStatusChanged Attributeapp.project.renderQueue.item(index).onStatusChanged Description The onStatusChanged attribute is invoked whenever the value of the RenderQueueItem.status attribute is changed. Note that changes can not be made to render queue items (or to the application at large) while a render is in progress (including when paused). This mirrors the regular application functionality. Type Function. Example function myStatusChanged() { alert(app.project.renderQueue.item(1).status) } app.project.renderQueue.item(1).onStatusChanged = myStatusChanged(); app.project.renderQueue.item(1).render = false; //shows dialog |